23509c794c671976359dec48443d2bdb282413ba,src/test/java/com/hazelcast/aws/utility/CloudyUtilityTest.java,CloudyUtilityTest,testNoTags,#,181

Before Change


        awsConfig.setAccessKey("some-access-key");
        awsConfig.setSecretKey("some-secret-key");
        awsConfig.setSecurityGroupName("hazelcast");
        List<String> result = (List<String>) CloudyUtility.unmarshalTheResponse(is, awsConfig);
        assertEquals(2, result.size());
    }

After Change


        awsConfig.setAccessKey("some-access-key");
        awsConfig.setSecretKey("some-secret-key");
        awsConfig.setSecurityGroupName("hazelcast");
        final Map<String, String> result = CloudyUtility.unmarshalTheResponse(is, awsConfig);
        assertEquals(2, result.size());
    }